home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Exec 5 / CD_Magazyn_EXEC_nr_5.iso / eXec / Krotkie opisy / Programy / YACAS.lha / yacas / CHANGES.txt next >
Text File  |  2000-12-05  |  6KB  |  126 lines

  1.  
  2.                Release of version 1.0.43 (November 18th 2000)
  3.  
  4.      * Added the YacasNotebook directory with the emacs shell to the
  5.        repository.
  6.      * We have support for BeOS! Thanks to Eugenia Loli.
  7.      * Serious bugfix: the ^ operator wasn't working like it should.
  8.        It was mapped to BitXor, and its precedence was wrong.
  9.  
  10.                Release of version 1.0.42 (November 12th 2000)
  11.  
  12.      * Allowed CForm to accept if (predicate) body; and if (predicate)
  13.        body else other; These routines need to be written still,
  14.        however, for them to also work in Yacas itself.
  15.      * cleaned up some code.
  16.      * Speedup of 40% of general Yacas execution.
  17.      * Some improvements to the logic theorem prover so it can handle
  18.        (a>b)-type epressions.
  19.      * added support for annotating expressions, with GetExtraInfo and
  20.        SetExtraInfo.
  21.      * Initial checkin into sourceforge CVS. Thanks to Vladimir
  22.        Livshits!
  23.      * Fixed some windows compilation problems. ElfDll being
  24.        explicitly mentioned in mathcommands3.cc, and explicitly
  25.        including elfdll.h.
  26.      * added initial versions for the c-like &, | % and ^ operators,
  27.        and if (...) ... else ... . This will probably make it possible
  28.        in the future to write code that is a lot more readable than
  29.        If(..., ..., ...). The else clause binds to the last if, just
  30.        like in c. So this means you can now enter expressions like:
  31.        if(3 < 3) a else if (3 > 3) b else c;
  32.  
  33.                Release of version 1.0.41 (September 8th 2000)
  34.  
  35.      * made expressions like a[2][3] return unevaluated if a is not a
  36.        matrix (just like a[1] in case a is not a vector).
  37.      * GnuPlot can now plot multiple functions (pass a list of
  38.        functions on to GnuPlot to achieve this).
  39.      * For some reason PrettyForm didn't evaluate its argument any
  40.        more. This has been changed back, so PrettyForm(%) works again.
  41.  
  42.                 Release of version 1.0.40 (August 21st 2000)
  43.  
  44.      * made some changes to make it compile on IRIX again. Thanks to
  45.        Daniel Richard G.
  46.      * Added the Sign function.
  47.      * improved Solve, Sqrt in order for EigenVectors to work better.
  48.      * separate section: configuring yacas through .yacasrc:
  49.        HistorySize, Help, PrettyPrinter,DefaultDirectory,
  50.      * Apart now works correctly on rational numbers
  51.      * verbose mode: V(expression) can now show internal results that
  52.        might be useful to the user. Solve uses this.
  53.      * We can now run Yacas from within emacs! Thanks to Jay Belanger.
  54.        See the file yacas.el for more information.
  55.  
  56.                 Release of version 1.0.39 (august 10th 2000)
  57.  
  58.      * added support for dealing with structs in the plugin system.
  59.        Also, the stub generator now automatically generates
  60.        documentation on the interface it is generating.
  61.      * started on opengl/glut plugin
  62.      * the Windows version now also supports plugins! Thanks go to
  63.        James Gilbertson.
  64.      * started on forth interpreter plugin. This will allow on-the-fly
  65.        compilation to forth code that can immediately be executed.
  66.      * Mod(2,0) gave the wrong error.
  67.      * ^c now cancels the current calculation (if calculating), or
  68.        quits yacas if currently on the command line.
  69.      * enable automatically deleting CArrayGrower :
  70.        CDeletingArrayGrower
  71.      * added tensors experimental to inprogress/, and moved norm there
  72.        too
  73.      * BUGFIX: plugin support for integers didn't allow returning
  74.        negative integers.
  75.      * install .so files in plugins/ dir, and be able to load from
  76.        there.
  77.      * factoring polynomials has been fixed. Factor((x^2+1)*(x^2+4))
  78.        will now return a correct factorization.
  79.      * Implemented HistorySize(depth), which specifies the number of
  80.        lines that should be stored in the ~/.yacas_history file.
  81.      * fixed partial fraction expansion! It turned out to be a bug in
  82.        the function Monic, which didn't return the correct result if
  83.        the lowest order term was non-constant. Monic(x^3+x^2),
  84.        Apart(1/(x^2+1)), Integrate(x,a,b)1/(x^2) now thus work. This
  85.        was found with Apart((x^3+4*x^2-x-2)/(x^4-x^2),x)
  86.      * better bracketing of expressions containing minus signs.
  87.      * changed #YB# and #YE# to <? and ?> for better cooperation with
  88.        html.
  89.  
  90.                  Release of version 1.0.38 (July 9th 2000)
  91.  
  92.      * intro.html generated again.
  93.      * Precision(n) generates an error if n isn't a positive integer.
  94.      * A:=B:=1 now works as required (A and B get assigned 1)
  95.      * prefix operators can now be defined with a precedence. This is
  96.        used with for instance "-". -x^2 is now treated as -(x^2) and
  97.        not as (-x)^2
  98.      * The "Not" command is now treated as a prefix operator.
  99.      * The And, Not and Or operators now return unevaluated if they
  100.        encounter an argument that is neither True nor False.
  101.      * Implemented a TraceStack, which shows the call stack just
  102.        before the limit is reached. This has to be documented still!
  103.      * changed the operators in the logic prover from ~, |, etc. to
  104.        And, Or and Not.
  105.      * new target in the make file in the src/ directory: 'depend'.
  106.        make depend builds a file depend.dep using the -MM flag of gcc.
  107.      * changed the system so when you type '??' it calls Help(), and
  108.        if you type ?f it calls Help(f). Help() and Help(f) are defined
  109.        in yacasinit, and can be overridden in ~/.yacasrc
  110.      * Implemented TraceStack(expression), which shows the top of the
  111.        stack, just before an error occurred.
  112.      * Improved error reporting: for internal functions the function
  113.        generating the error is now also shown.
  114.      * implemented PatchLoad, which does a php-style load of a file.
  115.        The contents of the file are read in and printed to screen,
  116.        except everything between #YB# and #YE#, which gets evaluated.
  117.        So print statements can be put there to put generic content.
  118.      * Implemented PatchString (which does the same as PatchLoad, but
  119.        for strings).
  120.      * moved manicon.html to the distro.
  121.      * Initial release of a plugin interface.
  122.      * implemented DllLoad and SetHelpBrowser.
  123.      * documented PatchLoad, PatchString, SetHelpBrowser, TraceStack,
  124.        and the plugin structure (preliminary), which can be found in
  125.        the programmers reference.
  126.